home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 1.0 beta / flock-1.0RC3.en-US.win32.exe / flock / modules / ISO8601DateUtils.jsm < prev    next >
Text File  |  2007-10-18  |  6KB  |  161 lines

  1. //
  2. // BEGIN FLOCK GPL
  3. //
  4. // Copyright Flock Inc. 2005-2007
  5. // http://flock.com
  6. //
  7. // This file may be used under the terms of of the
  8. // GNU General Public License Version 2 or later (the "GPL"),
  9. // http://www.gnu.org/licenses/gpl.html
  10. //
  11. // Software distributed under the License is distributed on an "AS IS" basis,
  12. // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13. // for the specific language governing rights and limitations under the
  14. // License.
  15. //
  16. // END FLOCK GPL
  17. //
  18.  
  19. const HOURS_TO_MINUTES = 60;
  20. const MINUTES_TO_SECONDS = 60;
  21. const SECONDS_TO_MILLISECONDS = 1000;
  22. const MINUTES_TO_MILLISECONDS = MINUTES_TO_SECONDS * SECONDS_TO_MILLISECONDS;
  23. const HOURS_TO_MILLISECONDS = HOURS_TO_MINUTES * MINUTES_TO_MILLISECONDS;
  24.  
  25. var EXPORTED_SYMBOLS = ["ISO8601DateUtils"];
  26.  
  27. debug("*** loading ISO8601DateUtils\n");
  28.  
  29. var ISO8601DateUtils = {
  30.  
  31.   /**
  32.   * XXX Thunderbird's W3C-DTF function
  33.   *
  34.   * Converts a W3C-DTF (subset of ISO 8601) date string to a Javascript
  35.   * date object. W3C-DTF is described in this note:
  36.   * http://www.w3.org/TR/NOTE-datetime IETF is obtained via the Date
  37.   * object's toUTCString() method.  The object's toString() method is
  38.   * insufficient because it spells out timezones on Win32
  39.   * (f.e. "Pacific Standard Time" instead of "PST"), which Mail doesn't
  40.   * grok.  For info, see
  41.   * http://lxr.mozilla.org/mozilla/source/js/src/jsdate.c#1526.
  42.   */
  43.   parse: function ISO8601_parse(aDateString) {
  44.     var dateString = aDateString;
  45.     if (!dateString.match('-')) {
  46.       // Fix Wordpress' invalid date format
  47.       // they use date such as 20030530T11:18:50-08:00
  48.       // instead of 2003-05-30T11:18:50-08:00
  49.       var year = dateString.slice(0, 4);
  50.       var month = dateString.slice(4, 6);
  51.       var rest = dateString.slice(6, dateString.length);
  52.       dateString = year + "-" + month + "-" + rest;
  53.     }
  54.  
  55.     var parts = dateString.match(/(\d{4})(-(\d{2,3}))?(-(\d{2}))?(T(\d{2}):(\d{2})(:(\d{2})(\.(\d+))?)?(Z|([+-])(\d{2}):(\d{2}))?)?/);
  56.  
  57.     // Here's an example of a W3C-DTF date string
  58.     // and what .match returns for it.
  59.     //
  60.     // date: 2003-05-30T11:18:50.345-08:00
  61.     // date.match returns array values:
  62.     //
  63.     //   0: 2003-05-30T11:18:50-08:00,
  64.     //   1: 2003,
  65.     //   2: -05,
  66.     //   3: 05,
  67.     //   4: -30,
  68.     //   5: 30,
  69.     //   6: T11:18:50-08:00,
  70.     //   7: 11,
  71.     //   8: 18,
  72.     //   9: :50,
  73.     //   10: 50,
  74.     //   11: .345,
  75.     //   12: 345,
  76.     //   13: -08:00,
  77.     //   14: -,
  78.     //   15: 08,
  79.     //   16: 00
  80.  
  81.     // Create a Date object from the date parts.  Note that the Date
  82.     // object apparently can't deal with empty string parameters in lieu
  83.     // of numbers, so optional values (like hours, minutes, seconds, and
  84.     // milliseconds) must be forced to be numbers.
  85.     var date = new Date(parts[1], parts[3] - 1, parts[5], parts[7] || 0,
  86.       parts[8] || 0, parts[10] || 0, parts[12] || 0);
  87.  
  88.     // We now have a value that the Date object thinks is in the local
  89.     // timezone but which actually represents the date/time in the
  90.     // remote timezone (f.e. the value was "10:00 EST", and we have
  91.     // converted it to "10:00 PST" instead of "07:00 PST").  We need to
  92.     // correct that.  To do so, we're going to add the offset between
  93.     // the remote timezone and UTC (to convert the value to UTC), then
  94.     // add the offset between UTC and the local timezone //(to convert
  95.     // the value to the local timezone).
  96.  
  97.     // Ironically, W3C-DTF gives us the offset between UTC and the
  98.     // remote timezone rather than the other way around, while the
  99.     // getTimezoneOffset() method of a Date object gives us the offset
  100.     // between the local timezone and UTC rather than the other way
  101.     // around.  Both of these are the additive inverse (i.e. -x for x)
  102.     // of what we want, so we have to invert them to use them by
  103.     // multipying by -1 (f.e. if "the offset between UTC and the remote
  104.     // timezone" is -5 hours, then "the offset between the remote
  105.     // timezone and UTC" is -5*-1 = 5 hours).
  106.  
  107.     // Note that if the timezone portion of the date/time string is
  108.     // absent (which violates W3C-DTF, although ISO 8601 allows it), we
  109.     // assume the value to be in UTC.
  110.  
  111.     // The offset between the remote timezone and UTC in milliseconds.
  112.     var remoteToUTCOffset = 0;
  113.     if (parts[13] && parts[13] !== "Z") {
  114.       var direction = (parts[14] === "+" ? 1 : -1);
  115.       if (parts[15]) {
  116.         remoteToUTCOffset += direction * parts[15] * HOURS_TO_MILLISECONDS;
  117.       }
  118.       if (parts[16]) {
  119.         remoteToUTCOffset += direction * parts[16] * MINUTES_TO_MILLISECONDS;
  120.       }
  121.     }
  122.     remoteToUTCOffset = remoteToUTCOffset * -1; // invert it
  123.  
  124.     // The offset between UTC and the local timezone in milliseconds.
  125.     var UTCToLocalOffset = date.getTimezoneOffset() * MINUTES_TO_MILLISECONDS;
  126.     UTCToLocalOffset = UTCToLocalOffset * -1; // invert it
  127.     date.setTime(date.getTime() + remoteToUTCOffset + UTCToLocalOffset);
  128.  
  129.     return date;
  130.   },
  131.  
  132.   create: function ISO8601_create(aDate) {
  133.     function zeropad (s, l) {
  134.       s = s.toString(); // force it to a string
  135.       while (s.length < l) {
  136.         s = '0' + s;
  137.       }
  138.       return s;
  139.     }
  140.  
  141.     var myDate;
  142.     // if d is a number, turn it into a date
  143.     if (typeof aDate === 'number') {
  144.       myDate = new Date();
  145.       myDate.setTime(aDate);
  146.     } else {
  147.       myDate = aDate;
  148.     }
  149.  
  150.     // YYYY-MM-DDThh:mm:ssZ
  151.     var result = zeropad(myDate.getUTCFullYear (), 4) + "-"
  152.                + zeropad(myDate.getUTCMonth () + 1, 2) + "-"
  153.                + zeropad(myDate.getUTCDate (), 2) + "T"
  154.                + zeropad(myDate.getUTCHours (), 2) + ":"
  155.                + zeropad(myDate.getUTCMinutes (), 2) + ":"
  156.                + zeropad(myDate.getUTCSeconds (), 2) + "Z";
  157.  
  158.     return result;
  159.   }
  160. };
  161.